body {
  padding-top: 70px; /* Adjust according to navbar height */
  font-family: 'Arial', sans-serif;
  background: #f8f9fa;
  
}

:root {
    --main-color: #4caf50;
}

/* Custom Styles for NavBar */
.navbar-brand img {
  height: 75px; /* Increase logo height */
  width: auto; /* Maintain aspect ratio */
  transition: height 0.3s; /* Smooth transition */
}

.navbar {
  background: linear-gradient(135deg, #4caf50, #1e88e5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow */
  padding: 0.5rem 1rem; /* Adjust navbar padding */
}

.navbar-nav .nav-link {
  color: #fff; /* Link color */
  font-weight: 500; /* Medium font weight */
  margin-left: 20px; /* Space between links */
}

.navbar-nav .nav-link:hover {
  color: #ff9900; /* Hover color */
}

.navbar-toggler {
  border: none; /* Remove border */
}

.navbar-toggler:focus {
  box-shadow: none; /* Remove focus outline */
}

/* Ensure navbar height remains consistent */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 60px; /* Match logo height */
}

/* End NavBar */

/* Custom Styles */

.services-section {
  padding: 80px 0;
  background: #fff;
}

.services-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--main-color);
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #4caf50, #1e88e5);
  /* background: #4caf50; */
  color: #fff;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover ul li,
.service-card:hover ul li i,
.service-card:hover .service-icon {
  color: #fff; /* Make text and icon white on hover */
}

.service-icon {
  font-size: 48px;
  color: var(--main-color);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s;
}

.service-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-card ul li i {
  color: var(--main-color);
  margin-right: 10px;
  transition: color 0.3s;
}



/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #4caf50, #1e88e5);
    color: #f8f9fa;
  }
  
  .footer-logo {
    max-width: 200px;
  }
  
  .footer-statement {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
  }
  
  .footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 40px 0 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a {
    color: #f8f9fa;
    text-decoration: none;
  }
  
  .footer ul li a:hover {
    color: #333 !important;
  }
  
  .footer .social-icons {
      padding-top: 40px !important;
  
  }
  
  .footer .social-icons a {
    text-decoration: none;
    color: #f8f9fa;
    font-size: 20px;
  }
  
  .footer .social-icons a:hover {
    color: #333 !important;
  }
  
  .footer .text-center {
    margin-top: 20px;
    font-size: 14px;
  }
  